@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body {
    background-color: blueviolet;
    background-image: url(../images/sign_upin.png);
    background-size: 50%;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
  }
  
.container {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Updated */
  min-height: 90vh;
}

.form-box {
  width: 450px;
  margin: 0px 10px;
  margin-left: 200px; /* Updated */
}
.box{
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 25px 25px;
    border-radius: 20px;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1),
                0 32px 64px -48px rgba(0,0,0,0.5);
}
.form-box{
    width: 450px;
    margin: 0px 10px;
}
 .form-box h2.headerl{
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    margin-bottom: 10px;
 }
 .form-box form .field{
    display: flex;
    margin: 10px;
    flex-direction: column;
 }
 .form-box form .input input{
    height: 40px;
    width: 100%;
    font-size: 16px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
 }
 .btn{
    height: 35px;
    background: rgba(76,68,182,0.808);
    border-radius: 0;
    border-radius: 5px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
    padding: 0px 10px;
 }
.btn:hover{
    opacity: 0.82;
}
.submit{
    width:100%
}
.links{
    margin-bottom: 15px;
}

/********* HOME *********/

.nav{
    background:transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    line-height: 60px;
    z-index: 100;

}
.logo{
    font-size: 25px;
    font-weight: 900;
    text-decoration: none;
    color: #000;
    margin-left: -190px;
}
.logo a{
    text-decoration: none;
    color: #000;
}
main{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}
.main-box{
    display: flex;
    flex-direction: column;
    width: 70%;
}
.main-box .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.bottom{
    width: 100%;
    margin-top: 20px;
}
@media only screen and (max-width:840px){
.main-box .top{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}
.top .box{
    margin: 10px 10px;
}
.bottom{
    margin-top: 0;
}
}
.message{
    text-align: center;
    background: #f9eded;
    padding: 15px 0px;
    border: 1px solid #699053;
    border-radius: 5px;
    margin-bottom: 10px;
    color: red;
}
